From: Etienne Carriere Date: Sun, 5 Nov 2017 21:57:29 +0000 (+0100) Subject: aarch32: add missing dmb() macro X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=634e4d2be6a15231cb132d4d15770c321d4d84f3;p=project%2Fbcm63xx%2Fatf.git aarch32: add missing dmb() macro Signed-off-by: Etienne Carriere --- diff --git a/include/lib/aarch32/arch_helpers.h b/include/lib/aarch32/arch_helpers.h index ede6d2ed..42309d55 100644 --- a/include/lib/aarch32/arch_helpers.h +++ b/include/lib/aarch32/arch_helpers.h @@ -304,6 +304,7 @@ DEFINE_DCOP_PARAM_FUNC(cvac, DCCMVAC) /* Previously defined accessor functions with incomplete register names */ #define dsb() dsbsy() +#define dmb() dmbsy() #define IS_IN_SECURE() \ (GET_NS_BIT(read_scr()) == 0)